how to separate string in python by blank line

109

how to separate string in python by blank line -

import re

def split_on_empty_lines(s):

    # greedily match 2 or more new-lines
    blank_line_regex = r"(?:\r?\n){2,}"

    return re.split(blank_line_regex, s.strip())

Comments

Submit
0 Comments